home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 3_15.lha / 3_15 / 3_15ex.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  241b  |  14 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. truct symbol
  6.  
  7.    token_value tok;
  8.    union
  9.        {
  10. double number_value;
  11. char*  name_string;
  12. };
  13. ;
  14.